home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
rlib
/
clearall.r
< prev
next >
Wrap
Text File
|
1994-09-21
|
781b
|
34 lines
//-------------------------------------------------------------------//
// Synopsis: Clear all the variables from the workspace.
// Syntax: clearall ( )
// Description:
// The function clearall, clears all data objects from the workspace.
// Scalars, strings, matrices, and lists are cleared with the clear
// function. User function are not affected by clearall. If you wish
// to remove user functions you must do so explicitly with clear.
//
// See Also: clear
//-------------------------------------------------------------------//
clearall = function ( )
{
local (i);
for (i in members ($$))
{
if (class ($$.[i]) != "function")
{
if (i != "pi" && i != "eps" && i != "_rlab_search_path")
{
clear ($$.[i]);
}
}
}
};